home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / intmail2 / popsu.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-07-27  |  568 b   |  35 lines

  1. unit popsu;
  2.  
  3. interface
  4.  
  5. uses Windows, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TSetupDlg = class(TForm)
  10.     Label1: TLabel;
  11.     ServerEdit: TEdit;
  12.     Label2: TLabel;
  13.     UserNameEdit: TEdit;
  14.     Label3: TLabel;
  15.     PasswordEdit: TEdit;
  16.     Label4: TLabel;
  17.     LogFileNameEdit: TEdit;
  18.     Bevel1: TBevel;
  19.     OKButton: TButton;
  20.     CancelButton: TButton;
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26.  
  27. var
  28.   SetupDlg: TSetupDlg;
  29.  
  30. implementation
  31.  
  32. {$R *.DFM}
  33.  
  34. end.
  35.